| Class | WebmasterTools::VerificationController |
| In: |
lib/webmaster_tools/verification.rb
|
| Parent: | ActionController::Base |
A custom controller that we‘ll use for serving the various webmaster verification files
GET /LiveSearchSiteAuth.xml Live requires an xml file with all of the authenticated users
# File lib/webmaster_tools/verification.rb, line 74
74: def live
75: users = WebmasterTools::Verification::Config.authorized_accounts(:live).map(&:last)
76: xml = %Q{<?xml version="1.0"?><users><user>#{users.join("</user><user>")}</user></users>}
77: render :xml => xml
78: end